home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 1.3 KB | 61 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _OBJCTITR_
- #define _OBJCTITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODObjectIterator;
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
-
-
-
-
- //==============================================================================
- // ODObjectIterator
- //==============================================================================
-
- interface ODObjectIterator : ODObject
- {
- void First(out ODISOStr key,
- out ODObject object,
- out ODULong objectLength);
- void Next(out ODISOStr key,
- out ODObject object,
- out ODULong objectLength);
- ODBoolean IsNotComplete();
-
-
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODObjectIterator;
-
- override:
- somUninit;
-
- releaseorder:
- First,
- Next,
- IsNotComplete,
-
- reserved1;
-
- };
- #endif //# __SOMIDL__
- };
-
- #endif // _OBJCTITR_
-